The Luxury Brand
  • Home
  • Shop
  • Marketplace
  • Journal
  • News
  • Sell
The Luxury Brand

Your curated destination for designer fashion from the world's most prestigious retailers. Compare prices across NET-A-PORTER, Farfetch, SSENSE and more.

Shop

  • All Products
  • Marketplace
  • Journal
  • News

Categories

    Information

    • Sell With Us
    • Privacy Policy
    • Terms
    • About
    © 2026 theluxurybrand.storePrices from affiliate partners
    Browse

    Shop by Category

    New Arrivals

    Just In

    View All

    Sell Your Designer Pieces

    List your pre-loved luxury items from just £${MP_PRICE}

    Start Selling
    From the Journal

    Latest Stories

    `; loadCats();loadRets(); fetch(API+'/products?limit=8').then(r=>r.json()).then(d=>{if(d.success)renderProds(document.getElementById('homeProducts'),d.products);}); fetch(API+'/blog?limit=3').then(r=>r.json()).then(d=>{if(d.success)renderPosts(document.getElementById('homePosts'),d.posts,'blog');}); } async function loadCats(){if(cats.length){rCats();return;}var d=await fetch(API+'/categories').then(r=>r.json());if(d.success){cats=d.categories;rCats();}} function rCats(){var el=document.getElementById('homeCats'),fc=document.getElementById('footerCats');if(el)el.innerHTML=cats.map(c=>'

    '+c.name+'

    ').join('');if(fc)fc.innerHTML=cats.slice(0,6).map(c=>'
  • '+c.name+'
  • ').join('');} async function loadRets(){if(rets.length){rRets();return;}var d=await fetch(API+'/retailers').then(r=>r.json());if(d.success){rets=d.retailers.filter(r=>r.slug!=='marketplace');rRets();}} function rRets(){var el=document.getElementById('retScroll');if(el)el.innerHTML=rets.map(r=>''+r.name+'').join('');} function renderProds(el,products){if(!products.length){el.innerHTML='
    No products found
    ';return;}el.innerHTML=products.map(p=>'
    '+(p.is_featured?'
    Featured
    ':'')+''+esc(p.name)+'
    '+(p.brand?'
    '+esc(p.brand)+'
    ':'')+'
    '+esc(p.name)+'
    '+(p.price?'
    £'+Number(p.price).toFixed(2)+'
    ':'')+'
    via '+(p.retailer_name||'Retailer')+'
    ').join('');} function renderPosts(el,posts,type){if(!posts.length){el.innerHTML='
    No articles yet
    ';return;}el.innerHTML=posts.map(p=>{var date=p.published_at?new Date(p.published_at).toLocaleDateString('en-GB',{day:'numeric',month:'long',year:'numeric'}):'';return'
    '+(p.image_url?'':'')+'
    '+date+'

    '+esc(p.title)+'

    '+(p.excerpt||'')+'

    ';}).join('');} async function renderShop(app,params){params=params||{};app.innerHTML='

    Shop

    Curated designer pieces from trusted retailers

    ';await loadCats();var cs=document.getElementById('catFilter');cats.forEach(c=>{var o=document.createElement('option');o.value=c.slug;o.textContent=c.name;cs.appendChild(o);});if(params.cat)cs.value=params.cat;document.getElementById('searchInput').addEventListener('keyup',function(e){if(e.key==='Enter')applyFilters();});loadProds(params.cat,params.search,'',0);} async function loadProds(cat,search,sort,offset){var el=document.getElementById('shopProducts');el.innerHTML='
    ';var url=API+'/products?limit=24&offset='+(offset||0);if(cat)url+='&category='+cat;if(search)url+='&search='+encodeURIComponent(search);if(sort)url+='&sort='+sort;var d=await fetch(url).then(r=>r.json());if(d.success){renderProds(el,d.products);var pages=Math.ceil(d.total/24),cur=Math.floor((offset||0)/24),pg=document.getElementById('shopPag');if(pages<=1){pg.innerHTML='';return;}var h='';for(var i=0;i'+(i+1)+'';pg.innerHTML=h;}} function applyFilters(){loadProds(document.getElementById('catFilter').value,document.getElementById('searchInput').value,document.getElementById('sortFilter').value,0);} async function renderBlog(app,params){if(params&¶ms.post){var d=await fetch(API+'/blog/'+params.post).then(r=>r.json());if(!d.success){app.innerHTML='

    Not Found

    ';return;}var p=d.post,date=p.published_at?new Date(p.published_at).toLocaleDateString('en-GB',{day:'numeric',month:'long',year:'numeric'}):'';app.innerHTML='
    '+date+'

    '+esc(p.title)+'

    By '+(p.author||'The Luxury Brand')+'

    '+(p.image_url?'':'')+'
    '+p.content+'
    ← Back
    ';return;}app.innerHTML='

    The Journal

    Insights and stories from the world of luxury

    ';var d=await fetch(API+'/blog?limit=20').then(r=>r.json());if(d.success)renderPosts(document.getElementById('blogPosts'),d.posts,'blog');} async function renderNews(app,params){if(params&¶ms.post){var d=await fetch(API+'/news/'+params.post).then(r=>r.json());if(!d.success){app.innerHTML='

    Not Found

    ';return;}var p=d.post,date=p.published_at?new Date(p.published_at).toLocaleDateString('en-GB',{day:'numeric',month:'long',year:'numeric'}):'';app.innerHTML='
    '+date+'

    '+esc(p.title)+'

    '+(p.source_name?'

    Source: '+esc(p.source_name)+'

    ':'')+'
    '+(p.image_url?'':'')+'
    '+p.content+'
    ← Back
    ';return;}app.innerHTML='

    News

    The latest from the world of luxury fashion

    ';var d=await fetch(API+'/news?limit=20').then(r=>r.json());if(d.success)renderPosts(document.getElementById('newsPosts'),d.posts,'news');} async function renderMarketplace(app,params){if(params&¶ms.listing){var d=await fetch(API+'/marketplace/'+params.listing).then(r=>r.json());if(!d.success){app.innerHTML='

    Not Found

    ';return;}var l=d.listing,imgs=l.images||[];app.innerHTML='
    '+(l.brand||'Designer')+'

    '+esc(l.title)+'

    '+(imgs.length?'':'')+'
    £'+Number(l.price).toFixed(2)+'
    Condition: '+(l.condition||'Not specified')+'
    Contact: '+esc(l.seller_name)+'
    '+(l.description||'').replace(/\n/g,'
    ')+'
    ← Back
    ';return;}app.innerHTML='

    Marketplace

    Pre-loved luxury from private sellers

    List Your Item — £'+MP_PRICE+'
    ';var d=await fetch(API+'/marketplace').then(r=>r.json());var el=document.getElementById('marketListings');if(d.success&&d.listings.length){el.innerHTML=d.listings.map(l=>{var img=l.images&&l.images.length?l.images[0]:'';return'
    '+(img?'':'
    ')+'
    '+(l.condition||'Pre-Owned')+'
    '+esc(l.title)+'
    £'+Number(l.price).toFixed(2)+'
    ';}).join('');}else{el.innerHTML='
    No listings yet. Be the first
    ';}} function renderSell(app){app.innerHTML='

    Sell With Us

    List your designer pieces for £'+MP_PRICE+' — live for 30 days

    Listing fee: £'+MP_PRICE+' — live for 30 days after approval

    ';} async function submitListing(){var msg=document.getElementById('sellMsg'),name=document.getElementById('sellerName').value.trim(),email=document.getElementById('sellerEmail').value.trim(),title=document.getElementById('sellTitle').value.trim(),price=document.getElementById('sellPrice').value;if(!name||!email||!title||!price){msg.innerHTML='Please fill required fields';return;}var fd=new FormData();fd.append('seller_name',name);fd.append('seller_email',email);fd.append('seller_phone',document.getElementById('sellerPhone').value);fd.append('title',title);fd.append('description',document.getElementById('sellDesc').value);fd.append('price',price);fd.append('brand',document.getElementById('sellBrand').value);fd.append('condition',document.getElementById('sellCondition').value);fd.append('category',document.getElementById('sellCat').value);var files=document.getElementById('sellImages').files;for(var i=0;iSubmitting...';try{var r=await fetch(API+'/marketplace/submit',{method:'POST',body:fd});var d=await r.json();if(d.success){var ppUrl='https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=cm@marlin.co.uk&item_name=LuxuryBrand+Listing:+'+encodeURIComponent(title)+'&amount='+MP_PRICE+'¤cy_code=GBP&return='+encodeURIComponent('https://www.theluxurybrand.store/marketplace.html')+'&cancel_return='+encodeURIComponent('https://www.theluxurybrand.store/sell.html')+'&custom='+d.listing_id;msg.innerHTML='Submitted! Redirecting to PayPal...';setTimeout(function(){window.location.href=ppUrl;},1500);}else{msg.innerHTML=''+(d.error||'Error')+'';}}catch(e){msg.innerHTML=''+e.message+'';}} function trackClick(id,url){fetch(API+'/products/'+id+'/click',{method:'POST'});if(url&&url!=='#')window.open(url,'_blank');} function esc(s){return(s||'').replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"');} var route=getRoute();nav(route.page,route.params); // Rotating hero backgrounds var heroImages = [ 'https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1920&q=80', 'https://images.unsplash.com/photo-1548036328-c9fa89d128fa?w=1920&q=80', 'https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1920&q=80', 'https://images.unsplash.com/photo-1436491865332-7a61a109db05?w=1920&q=80', 'https://images.unsplash.com/photo-1567521464027-f127ff144326?w=1920&q=80', 'https://images.unsplash.com/photo-1549298916-b41d501d3772?w=1920&q=80', 'https://images.unsplash.com/photo-1523170335258-f5ed11844a49?w=1920&q=80', 'https://images.unsplash.com/photo-1547996160-81dfa63595aa?w=1920&q=80', 'https://images.unsplash.com/photo-1581783898377-1c85bf937427?w=1920&q=80', 'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920&q=80', 'https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1920&q=80', 'https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1920&q=80', 'https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?w=1920&q=80', 'https://images.unsplash.com/photo-1591348278863-a8fb3887e2aa?w=1920&q=80', 'https://images.unsplash.com/photo-1585386959984-a4155224a1ad?w=1920&q=80', 'https://images.unsplash.com/photo-1584917865442-de89df76afd3?w=1920&q=80', 'https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?w=1920&q=80', 'https://images.unsplash.com/photo-1558171813-4c088753af8f?w=1920&q=80', 'https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&q=80', 'https://images.unsplash.com/photo-1606744824163-985d376605aa?w=1920&q=80', 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=1920&q=80', 'https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&q=80', 'https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=1920&q=80', 'https://images.unsplash.com/photo-1534452203293-494d7ddbf7e0?w=1920&q=80', 'https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=1920&q=80', 'https://images.unsplash.com/photo-1504274066651-8d31a536b11a?w=1920&q=80', 'https://images.unsplash.com/photo-1517336714731-489689fd1ca8?w=1920&q=80', 'https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=1920&q=80', 'https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1920&q=80', 'https://images.unsplash.com/photo-1512756290469-ec264b7fbf87?w=1920&q=80', ]; var heroIdx = 0; // Preload images heroImages.forEach(function(src) { var img = new Image(); img.src = src; }); setInterval(function() { var hero = document.querySelector('.hero'); if (!hero) return; heroIdx = (heroIdx + 1) % heroImages.length; var before = hero.querySelector('.hero-bg-a'); var after = hero.querySelector('.hero-bg-b'); if (!before) { // Create two overlay divs for crossfade before = document.createElement('div'); before.className = 'hero-bg-a'; before.style.cssText = 'position:absolute;inset:0;background:url(' + heroImages[0] + ') center/cover;opacity:0.12;transition:opacity 1.5s ease;z-index:0;'; after = document.createElement('div'); after.className = 'hero-bg-b'; after.style.cssText = 'position:absolute;inset:0;background:center/cover no-repeat;opacity:0;transition:opacity 1.5s ease;z-index:0;'; hero.insertBefore(after, hero.firstChild); hero.insertBefore(before, hero.firstChild); } // Crossfade after.style.backgroundImage = 'url(' + heroImages[heroIdx] + ')'; after.style.opacity = '0.15'; before.style.opacity = '0'; setTimeout(function() { before.style.backgroundImage = 'url(' + heroImages[heroIdx] + ')'; before.style.opacity = '0.12'; after.style.opacity = '0'; }, 1600); }, 15000);
    Our network: Fashion · Fashion Directory · Schmutter · Interiors · Diesel Motor · Wotches · The Luxury Brand · Electronic High Street · Perversion · Fight That Ticket · Remember Everything
    Our Network
    Fashion Folder · The Fashion Directory · Schmutter · Interiors · Diesel Motor · The Electronic High Street · Wotches · Motorfone · GB Online Backup · GB Online · e-ye · Fight That Ticket · Remember Everything
    Our Network
    Fashion Folder · The Fashion Directory · Schmutter · Interiors · Diesel Motor · The Electronic High Street · Wotches · Motorfone · GB Online Backup · GB Online · e-ye · Fight That Ticket · Remember Everything · DanceSwimBikiniWear